DRDataPackServiceBatch

Print
Apex classe Details
Name DRDataPackServiceBatch
Label omnistudio.DRDataPackServiceBatch
Namespace Prefix omnistudio
Status Active
Api Version 60
Apex Code
/*
This file is generated and isn't the actual source code for this
managed global class.
This read-only file shows the class's global constructors,
methods, variables, and properties.
To enable code to compile, all methods return null.
*/
global class DRDataPackServiceBatch implements Database.Batchable<Object>, Database.Stateful, System.Iterable<Object>, System.Iterator<Object> {
    global DRDataPackServiceBatch(Map<String,Object> input) {

    }
    global void activateDataPack(Id vlocityDataPackId) {

    }
    global void execute(Database.BatchableContext bc, Object data) {

    }
    global void finish(Database.BatchableContext bc) {

    }
    global Boolean hasNext() {
        return null;
    }
    global System.Iterator iterator() {
        return null;
    }
    global Object next() {
        return null;
    }
    global System.Iterable start(Database.BatchableContext bc) {
        return null;
    }
    global static Id startResourceDeploy(String resourceName) {
        return null;
    }
}